"There isn't anything to compare. Nothing to compare, branches are entirely different commit histories"
git checkout master git branch main master -f git checkout main git push origin main -f
git config --global init.defaultBranch main
깃헙에서 저장소의 default 브랜치가 main인걸 확인
브랜치 삭제
git push origin --delete master
github에서 사라질뿐, git에선 그대로다.
저건 원격저장소인 github의 저장소 삭제방법이기 때문
git branch [-d] 브랜치명
-d
: 병합여부와 관계없이 삭제
감사합니다.
깃 처음이라 삽질하고 있었는데, 한방에 해결되었습니다!!